.. _EEex_ReadSignedWord: =================================== EEex_ReadSignedWord =================================== Read a signed word from an address location. Technically this function reads a dword from the given address, extracting and returning the "index"th word :: EEex_ReadSignedWord(address, index) **Parameters** * **Address** - the address in memory to read a ``DWORD`` value from * **index** - the index of the ``DWORD`` to read and return as a ``WORD`` value from **Return** Returns a ``WORD`` value **Examples** :: EEex_ReadSignedWord(EEex_GetActorShare(actorID) + 0x295D, 0x0) :: EEex_ReadSignedWord(EEex_ReadDword(EEex_GetActorShare(actorID) + 0x8A0), 0x1) **See Also** :ref:`EEex_WriteWord`, :ref:`EEex_ReadWord`, :ref:`EEex_ReadDword`, :ref:`EEex_WriteDword`, :ref:`EEex_ReadByte`, :ref:`EEex_WriteByte`